body{
    padding: 0;
    margin: 0;
    font-family: 'Monserrat', sans-serif;
}

.navbar{
    background-color: #333;
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar a{
    text-align: center;
    padding: 14px;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.navbar a:hover{
    background-color: #555;
}

.navbar-bottom{
    background-color: #222;
}


.davodev-section{
    box-sizing: border-box;
    display: flex;
    width: 100%;
    height: 40vh;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(180deg, #7b90fc 0, #3c78f2 50%, #0062e8 100%);
}
.davodev-section img{
    width: 50%;
    height: auto;
}

.davodev-description{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    background-color: #333; 
    height: 40vh; 
}
.davodev-description p{
    font-family: "Scope One", serif;
    font-size: 1.5rem;
    margin: 0 auto;
    text-align: justify;
    max-width: 60vw;
    color: white;
}

.davodev-titles{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    background-image: linear-gradient(180deg, #6786f8 0, #3c78f2 50%, #006aec 100%);
}


.davodev-titles img{
    margin: 0;
    padding: 0;
    width: 30%;
}


.davodev-estudios-description{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    background-color: #333; 
}


.davodev-description-estudios:nth-child(2){
    font-family: "Scope One", serif;
    font-size: 1.5rem;
    color: white;
    text-align: justify;
    grid-area: 1 / 2 / 2 / 3;
}

.davodev-description-estudios:last-child{
    grid-area: 1 / 3 / 2 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 8rem 2rem 1rem;
}

.uaa-map{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}



.davodev-tec-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    background-color: #333; 
    height: 40vh;
}

table{
    border-collapse: collapse;
    width: 90%;
    background-color: white;

}

td, tr{
    padding: 1rem;
    text-align: center;
    border: 5px solid #006aec;
    width: 10%;
    height: 20%;
}
/* Estilos para el formulario */
.davodev-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #333;
    color: white;
}

.davodev-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    gap: 1rem;
}

.davodev-form label {
    font-size: 1.2rem;
    color: white;
}

.davodev-form input,
.davodev-form select,
.davodev-form textarea {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #444;
    color: white;
}

.davodev-form input:focus,
.davodev-form select:focus,
.davodev-form textarea:focus {
    outline: none;
    border-color: #006aec;
}

.davodev-form textarea {
    resize: vertical;
    min-height: 100px;
}

.davodev-form button {
    padding: 0.75rem;
    font-size: 1.2rem;
    background-color: #006aec;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.davodev-form button:hover {
    background-color: #0056b3;
}

.davodev-form label[for="subscribe"] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.davodev-form input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
}

/* Estilos para el footer */
.footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 1rem;
}